home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
Borland Visual dBASE Professiona v7.0
/
DATA1.CAB
/
Sample_dBASE
/
Fleet
/
Aircraft.dmd
< prev
next >
Wrap
Text File
|
1997-11-20
|
843b
|
35 lines
//--------------------------------------------------------------
//
// Aircraft.dmd -- DataModule with Aircraft table.
//
// Dependencies: FLEET.CDM
//
// Visual dBASE Samples Group
//
// $Revision: 1.0 $
//
// Copyright (c) 1997, Borland International, Inc.
// All rights reserved.
//
//---------------------------------------------------------------
** END HEADER -- do not remove this line
//
// Generated on 10/09/97
//
class aircraftDataModule of FLEETCDATAMODULE from "Fleet.cdm"
this.AIRCRAFT1 = new QUERY()
this.AIRCRAFT1.parent = this
with (this.AIRCRAFT1)
left = 10.1111
top = 0
sql = 'SELECT * FROM "aircraft.dbf"'
session = form.SESSIONFLEET
database = form.dbfleet
active = true
endwith
this.rowset = this.aircraft1.rowset
endclass